home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl720 / sst115j.lzh / SSTSEL.H < prev    next >
Text File  |  1992-06-12  |  1KB  |  26 lines

  1. /* ------------------------------------------------------------------------ */
  2. /*                                sstsel.h                                  */
  3. /*                                                                          */
  4. /*                     selection system header file                         */
  5. /* ------------------------------------------------------------------------ */
  6.  
  7. #define MAXLINE      76
  8.  
  9. typedef struct _llrec {
  10.     int     tag;
  11.     char    line[MAXLINE];
  12.     struct _llrec *_nx;         /* points to next record */
  13.     struct _llrec *_pv;         /* points to prev record */
  14. } SelREC;
  15.  
  16. /* ------------------------------------------------------------------------ */
  17. /*                           function prototypes                            */
  18. /* ------------------------------------------------------------------------ */
  19. int     Sselstr         (int x, int y, int t);
  20. char   *Sselonestr      (int x, int y, int t);
  21. SelREC *Sinsert         (char *s);
  22. void    Sforeach        (void (*func) (char *s));
  23. void    Sdelete         (void);
  24.  
  25.  
  26.